home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
hypercrd
/
hc2_x
/
tcprogud.sit
/
TC Prog Guide
/
card_16372.txt
< prev
next >
Wrap
Text File
|
1991-02-27
|
518b
|
30 lines
-- card: 16372 from stack: in
-- bmap block id: 0
-- flags: 0000
-- background id: 4755
-- name:
-- part contents for background part 4
----- text -----
For example, the following function returns the square of its argument.
ANSI C:
float square(float x) /* function prototype */
{
return x*x;
}
Pre-ANSI C:
float square(x) /* not an ANSI C prototype */
float x;
{
return x*x;
}
-- part contents for background part 7
----- text -----
85